home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wdj0797.zip / ZOLMAN.ZIP / TOPVIEW.CPP < prev    next >
C/C++ Source or Header  |  1996-11-18  |  1KB  |  63 lines

  1. // TopView.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "MySplitter.h"
  6. #include "TopView.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CTopView
  16.  
  17. IMPLEMENT_DYNCREATE(CTopView, CFormView)
  18.  
  19. CTopView::CTopView()
  20.     : CFormView(CTopView::IDD)
  21. {
  22.     //{{AFX_DATA_INIT(CTopView)
  23.         // NOTE: the ClassWizard will add member initialization here
  24.     //}}AFX_DATA_INIT
  25. }
  26.  
  27. CTopView::~CTopView()
  28. {
  29. }
  30.  
  31. void CTopView::DoDataExchange(CDataExchange* pDX)
  32. {
  33.     CFormView::DoDataExchange(pDX);
  34.     //{{AFX_DATA_MAP(CTopView)
  35.         // NOTE: the ClassWizard will add DDX and DDV calls here
  36.     //}}AFX_DATA_MAP
  37. }
  38.  
  39.  
  40. BEGIN_MESSAGE_MAP(CTopView, CFormView)
  41.     //{{AFX_MSG_MAP(CTopView)
  42.         // NOTE - the ClassWizard will add and remove mapping macros here.
  43.     //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CTopView diagnostics
  48.  
  49. #ifdef _DEBUG
  50. void CTopView::AssertValid() const
  51. {
  52.     CFormView::AssertValid();
  53. }
  54.  
  55. void CTopView::Dump(CDumpContext& dc) const
  56. {
  57.     CFormView::Dump(dc);
  58. }
  59. #endif //_DEBUG
  60.  
  61. /////////////////////////////////////////////////////////////////////////////
  62. // CTopView message handlers
  63.